home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / MACROS.HLP < prev    next >
Text File  |  1988-07-05  |  2KB  |  52 lines

  1. \ MACROS.HLP    Keyboard macros for F-PC                by Tom Zimmer
  2.  
  3. macros
  4. mackey          ( --- c1 )      Get a key from keyboard or macro.
  5.  
  6.           FF has keyboard macros, that is key sequences can be saved and
  7.         assigned to a key Alt-1 to Alt-9, and later these sequences can
  8.         be replayed.  Macros are implimented at the level of KEY, so they
  9.         are compatable with almost anything that prompts the user for
  10.         typed input.  A macro can be defined or performed at any time,
  11.         although they are VERY CONTEXT SENSITIVE. If you define a macro
  12.         in the editor, and execute it while at the Forth command level,
  13.         unpredictable results are likely.  Further information on the
  14.         definition and use of macros is shown later in this file.
  15.  
  16.           Another recent addition to macros is the ability to repeat
  17.         any key including a macro up to 999 times in succession.
  18.         This is done with Alt-R (repeat).
  19.  
  20.                         Type N <Enter> for more info
  21.  
  22.           Defining a macro, or repeating a key both pop up a window
  23.         displaying the options for making a macro or repeating a key
  24.         stroke.
  25.  
  26.                         Keyboard macros for F-PC.
  27. To DEFINE a macro;
  28.         Press Alt-M             \ starts defining, waits for next key
  29.         Press Alt-1             \ tells it which macro to make, can be
  30.                                 \ Alt-1 through Alt-9, waits for first
  31.                                 \ key of macro
  32.         Start entering keys.    \ keys are passed on to program and saved too
  33.         Press Alt-M             \ Ends definition of the new macro
  34.         Thats all there is to MAKING macros.
  35.  
  36. To PERFORM a macro;
  37.         Press Alt-1             \ Macro processor passes back all keys
  38.                                 \ one for each call to key until empty
  39.         Thats all there is to DOING macros.
  40.  
  41. To REPEAT a macro;
  42.         Press Alt-R             \ We will be repeating a macro key
  43.         Enter a # between 0-999 \ The number of times to repeat the macro
  44.         Press Alt-1             \ the macro to repeat. Alt-1
  45.  
  46. NOTE:
  47.           A bug in the system requires that a macro contain at least two
  48.         keys, if only one key is placed in a macro, a null will be
  49.         after the first key is passed.
  50.  
  51.  
  52.